home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
COMPILER
/
VP10B003
/
VPC
/
SOURCE
/
TV
/
TV700701.PAT
< prev
Wrap
Text File
|
1995-06-21
|
2KB
|
68 lines
Comparing BP700\OBJECTS.PAS and BP701\OBJECTS.PAS
1582c1582
< OR AX,AX
> OR AL,AL
1613a1614
> FillChar(AItems^, ALimit * SizeOf(Word), 0);
1626c1627,1628
< FreeMem(Ptr(SegList^[Dif], 0), BlockSize);
> if SegList^[Dif] <> 0 then
> FreeMem(Ptr(SegList^[Dif], 0), BlockSize);
1637c1639
< if NewBlock = nil then Exit
> if NewBlock = nil then Break
1640a1643,1644
> if Dif = ALimit then
> ChangeListSize := True;
1645,1646c1649
< end;
> end else ChangeListSize := True;
1755c1758
< OR AX,AX
> OR AL,AL
1793c1796
< OR AX,AX
> OR AL,AL
Comparing BP700\DIALOGS.PAS and BP701\DIALOGS.PAS
1038a1039,1051
>
> function AppendError(Validator: PValidator): Boolean;
> begin
> AppendError := False;
> with Validator^ do
> if (Options and voOnAppend <> 0) and (CurPos <> Length(Data^))
> and not IsValidInput(Data^, True) then
> begin
> Error;
> AppendError := True;
> end;
> end;
>
1045c1058
< if not Validator^.Valid(Data^) then
> if AppendError(Validator) or not Validator^.Valid(Data^) then
Comparing BP700\HISTLIST.PAS and BP701\HISTLIST.PAS
116,118d115
< INC BL
119a117,119
> INC BX
> INC BX
> INC BX
Comparing BP700\OUTLINE.PAS and BP701\OUTLINE.PAS
903,904c903,906
< if ChildList <> nil then DisposeNode(ChildList);
> DisposeNode(ChildList);
> DisposeNode(Next);
> DisposeStr(Text);
> Dispose(Node);
906d907
< Dispose(Node);
Comparing BP700\STDDLG.PAS and BP701\STDDLG.PAS
947c947
< RelativePath := not (S <> '') and ((S[1] = '\') or (S[2] = ':'));
> RelativePath := not ((S <> '') and ((S[1] = '\') or (S[2] = ':')));
Comparing BP700\VIEWS.PAS and BP701\VIEWS.PAS
3772c3772
< if Flags and wfGrow + wfMove <> 0 then
> if Flags and (wfGrow + wfMove) <> 0 then